home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1998 / MacHack 1998.toast / The Hacks! / COSEmulator / COSEmulator- SRC / headers / FloatWindow.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-06-21  |  542 b   |  29 lines  |  [TEXT/CWIE]

  1. #ifndef _FloatWindow_h_
  2. #define _FloatWindow_h_
  3.  
  4. #include "Window.h"
  5.  
  6. class    FloatWindow : public Window
  7. {
  8. public:
  9.     FloatWindow( void );
  10.  
  11.     Boolean    SetUp( short pic , short width , short height , short xLoc , short yLoc );
  12.     
  13.     virtual    void    HandleMouseClick( Boolean down , point where );
  14.     virtual    void    HandleMouseMove( point where );
  15.     virtual    Boolean    PointInWindow( point where );
  16.  
  17.     virtual    Boolean    Front( void );    
  18.     virtual    void    SetFront( Boolean f );
  19.     
  20.     virtual    void    DrawToScreen( rect *where , Boolean backGround );
  21.     
  22. private:
  23.     
  24.     
  25. };
  26.  
  27.  
  28.  
  29. #endif